home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / CENTER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  141 b   |  9 lines

  1. void AtSay( int x, int y, char *s );
  2.  
  3. #include <string.h>
  4.  
  5. void Center( int y, char *s )
  6. {
  7.     AtSay( ( 80 - strlen(s) ) / 2, y, s );
  8. }
  9.